home *** CD-ROM | disk | FTP | other *** search
/ Postcard CD: Toronto / Postcard CD: Toronto (2004).iso / mac / SS2.dxr / Internal_29.ls < prev    next >
Encoding:
Text File  |  2002-01-11  |  1.0 KB  |  32 lines

  1. global playMode, language
  2.  
  3. on exitFrame me
  4.   sprite(17).visible = 0
  5.   sprite(18).visible = 0
  6.   if language = 1 then
  7.     set the castLibNum of sprite 17 to castLib("english").number
  8.     set the castLibNum of sprite 18 to castLib("english").number
  9.   else
  10.     if language = 2 then
  11.       set the castLibNum of sprite 17 to castLib("french").number
  12.       set the castLibNum of sprite 18 to castLib("french").number
  13.     else
  14.       if language = 3 then
  15.         set the castLibNum of sprite 17 to castLib("german").number
  16.         set the castLibNum of sprite 18 to castLib("german").number
  17.       else
  18.         if language = 4 then
  19.           set the castLibNum of sprite 17 to castLib("japanese").number
  20.           set the castLibNum of sprite 18 to castLib("japanese").number
  21.         else
  22.           if language = 5 then
  23.             set the castLibNum of sprite 17 to castLib("spanish").number
  24.             set the castLibNum of sprite 18 to castLib("spanish").number
  25.           end if
  26.         end if
  27.       end if
  28.     end if
  29.   end if
  30.   playMode = 1
  31. end
  32.